body {
  background-color: #fdfaf6;
  font-family: 'Times New Roman', serif;
  margin: 0;
  padding: 0;
}

/* Centered header with margin from top */
header {
  width: 80%;
  max-width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 250px;
  background-color: #ccc3b6;
  border-radius: 300px;
  width: fit-content;
  margin: 50px auto; /* ⬅️ Center and push down */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Logo */
.logo img {
  height: 80px;
  margin-top: 37px;
}

.logo h1 {
  font-size: 30px;
  font-weight: bold;
}

/* Navigation menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
  background-color: #a58e76;
  color: white;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fdfaf7;
  font-family: 'Times New Roman', serif;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.logo img {
  width: 130px;
  height: auto;
  margin-bottom: 30px;
}

.social-icons {
  position: absolute;
  top: 200px;       /* ubah nilai ni untuk ke bawah */
  left: 90px;       /* ubah nilai ni untuk ke kanan */
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.social-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
.book-section {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: 150px 0 0 60px; /* jarak dari atas & kiri */
}

.book-image img {
  width: 220px;
  height: auto;
  box-shadow: none;
  margin-left: 200px;
  background: none;
  margin-top: -20px;
}
h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #4a3823;
  margin-left: 165px;
}

.stars {
  font-size: 20px;
  margin-bottom: 20px;
  margin-left: 230px;
}

/* Back Button */
.back-btn {
  background: #a3917b;
  padding: 10px 30px;
  color: black;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: 0.3s;
  margin-left: 40px;
  margin-top: 30px;
}

.back-btn:hover {
  background: #5c4433;
}

.review {
  font-size: 18px;
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif"serif;
  line-height: 1.8;
  text-align: justify;
  max-width: 1000px;
  color: #333;
  margin-top: -450px;
  margin-left: 460px;
  font-style: normal;
}
.popup-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 108, 66, 0.6); /* vintage brown */
  margin-right: 35px;
 
}

.popup-img:hover {
  transform: scale(15);
  box-shadow: 0 12px 40px rgba(139, 108, 66, 0.75); /* lebih pekat */
}

.popup-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 108, 66, 0.6); /* vintage brown */
}

.popup-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(139, 108, 66, 0.75); /* lebih pekat */
}

.gallery {
  display: flex;
  justify-content: flex-end; /* Semua gambar align ke kanan */
  margin-right: 150px;        /* Tolak ke kanan sikit */
  margin-top: 30px;
}

/* Modal style */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 50%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 20px white;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
body {
  margin: 0;
  padding: 0;
  background-image: url( "../IMG/highfi-bg.png.png"); /* <-- gambar kau */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Times New Roman', serif;
}
